/* ══ FEATURED SECTION ════════════════════════ */
.pc-featured {
    background: var(--pc-light);
    padding: 4rem 0 3.5rem;
}

.pc-featured .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pc-red);
    font-family: "EB Garamond", serif;
    margin-bottom: 0.4rem;
}

.pc-featured .section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--pc-navy);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.pc-featured .section-sub {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* hotel card */
.hotel-card {
    background: #fff;
    border: 1px solid #e4dfd6;
    overflow: hidden;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    height: 100%;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.hotel-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.hotel-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.hotel-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.hotel-card .card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--pc-red);
    color: #fff;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
}

.hotel-card .card-body-inner {
    padding: 1.2rem 1.3rem 1.4rem;
}

.hotel-card .card-neighborhood {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pc-gold);
    margin-bottom: 0.3rem;
}

.hotel-card .card-name {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    color: var(--pc-navy);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.hotel-card .card-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.hotel-card .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0ece6;
    padding-top: 0.8rem;
}

.hotel-card .card-stars {
    color: var(--pc-gold);
    font-size: 0.75rem;
}

.hotel-card .card-price {
    font-family: "Playfair Display", serif;
    font-size: 0.9rem;
    color: var(--pc-navy);
}

.hotel-card .card-price span {
    font-size: 0.72rem;
    color: #999;
    font-family: "EB Garamond", serif;
}

.hotel-card .btn-view {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--pc-red);
    text-decoration: none;
    margin-top: 0.75rem;
    transition: gap 0.2s;
}

.hotel-card .btn-view:hover {
    gap: 0.7rem;
}

/* why choose strip */
.pc-why {
    background: var(--pc-navy);
    padding: 2.8rem 0;
    border-top: 3px solid var(--pc-gold);
}

.pc-why .why-item {
    text-align: center;
    padding: 0.5rem 1rem;
}

.pc-why .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--pc-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    color: var(--pc-gold);
    font-size: 1.3rem;
}

.pc-why .why-title {
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.pc-why .why-text {
    font-size: 0.83rem;
    color: #fff;
    line-height: 1.55;
}